nhooyr.io/websocket.limitReader.n (field)

9 uses

	nhooyr.io/websocket (current package)
		read.go#L467: 	n     int64
		read.go#L480: 	lr.n = lr.limit.Load()
		read.go#L485: 	if lr.n < 0 {
		read.go#L489: 	if lr.n == 0 {
		read.go#L495: 	if int64(len(p)) > lr.n {
		read.go#L496: 		p = p[:lr.n]
		read.go#L499: 	lr.n -= int64(n)
		read.go#L500: 	if lr.n < 0 {
		read.go#L501: 		lr.n = 0